Constant Variables


Variable

A variable allows the computer to store information in the memory of the computer. However, there are some cases where it is desired that the value stored in the variable does not change, that is, it must remain constant. In the example below, an integer variable to store the age of a person, and a constant variable called name are declared. In this specific case, the age of the person may be modified later in the program, but the name of the person cannot be changed.
Una variable permite almacenar información en la memoria de la computadora. Sin embargo, hay algunos casos en donde se desea que el valor almacenado en la variable no cambie, o sea que, este permanezca constante. En el ejemplo mostrado debajo, variable entera para almacenar la edad de una persona, y una variable constante llamada name son declaradas. En este caso en específico, la edad de la persona puede ser modificada más adelante en el programa, pero el nombre de la persona no puede ser modificado.

Variable

Tip
Always declare a variable as constant when you know in advance that the value of this variable will not change; this will help you write robust computer code.
Siempre declare una variable como constante cuando usted conozca con anticipación que el valor de la variable no cambiará; esto le ayudará a escribir código de computadora robusto.

Problem 1
Complete the table below. Follow the example.

Humans                 Computers        
I have two children (Tengo dos hijos)int childCount = 2;
Ken has and will always have one car (Ken tiene y siempre tendrá un carro) const int numCars = 1;
Jena weights 150.5 pounds (Jena pesa 150.5 libras)      
Mary is not rich (Mary no es rica)      
He loves pizza and he will love it (A el le encanta y siempre le encantara la pizza)      
Her name is Monica (Se llama Monica)      
The car is purple and it always will be this color (El carro es morado y siempre sera de ese color)      
A foot has twelve inches (un pie tiene doce pulgadas)      
The value of pi is 3.14159 (el valor de pi es 3.14159)      
The radius of the earth is 6353 Km (el radio de la tierra es 6353 Km)      
My first pair of shoes were black (Mis primeros zapatos eran negros)      
The chair has four legs (La silla tiene cuatro patas)      
I love Mexican food and I will always do(Me encanta la comida Mexicana y siempre me gustara)      
My waist is 34 inches (Mi cintura mide 34 pulgadas)      
The distance from NYC to LA is 3932.80 Km (La distancia desde NYC a Los Angeles es 3932.80 Km)      

Tip
javaIn Java, you use final instead of const.
En Java, usted usa final en lugar de const.

© Copyright 2000-2021 Wintempla selo. All Rights Reserved. Jul 22 2021. Home